home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_6.lha / 7_6 / makefile < prev    next >
Makefile  |  1993-08-08  |  438b  |  22 lines

  1. C= CC -I. -I../../CC
  2.  
  3. ll: tst
  4.  
  5. st: tst.o all.o
  6. $(CC) -o tst tst.o all.o
  7.  
  8. st.o: tst.c 7_6a.h 7_6b.h 7_6f.h
  9. $(CC) -c tst.c
  10.  
  11. ll.o: all.c 7_6a.h 7_6b.h 7_6f.h 7_6_app.c 7_6_apph.c 7_6_clear.c 7_6_cons1.c 7_6_cons2.c 7_6_getn.c 7_6_getp.c 7_6_ins.c 7_6_insh.c 7_6_next.c 7_6_prev.c 7_6_dest.c 7_6c.c 7_6d.c 7_6e.c
  12. $(CC) -c all.c
  13.  
  14. MP= tst.cmp
  15. UT= tst.out
  16.  
  17. st.out: tst ; tst > tst.out
  18.  
  19. est: all $(CMP) $(OUT)
  20. cmp tst.out tst.cmp
  21. @echo test done
  22.